/* body {
    font-family: 'poppins', sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(to right, #64b4ca, #4480ca);
} */

.SMD-form-container {
    width: 100%;
    /* max-width: 800px; */
    background-color: #ffffff;
    padding: 30px;
}

.SMD-form-section {
    display: none;
}

.SMD-form-section.active {
    display: block;
}

.SMD-form-container label {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.SMD-form-container input,
.SMD-form-container select,
.SMD-form-container textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
    transition: 0.3s;
}

.SMD-form-container input:focus,
.SMD-form-container select:focus,
.SMD-form-container textarea:focus {
    border-color: #241b18;
    box-shadow: 0 0 8px rgba(255, 87, 34, 0.5);
    outline: none;
}

.SMD-Switch,
.SMD-form-container-button {
    padding: 12px 25px;
    font-size: 16px;
    color: #fff;
    background-color: #030303;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.SMD-form-container button:hover {
    background-color: #0c0937;
}

.SMD-form-container button:active {
    background-color: #000000;
}

.SMD-passenger-section {
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

/* Common Button Style */
button {
    padding: 14px 45px;
    margin: 5px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

/* Specific Button Styles */

/* Add Hotel or Passenger Button (Common for both) */
.SMD-add-hotel-btn,
.SMD-add-more-btn {
    float: right;
    background-color: rgb(0, 0, 0);
    color: white;
}

/* Remove Button (Hotel/Passenger) */
.remove-button {
    float: right;

    background-color: rgb(248, 3, 44);
    color: white;
}

/* Error Message */
.SMD-error {
    color: rgb(163, 207, 4);
    font-size: 12px;
    display: none;
}

/* Fade-In Animation for Form Sections */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.SMD-form-section {
    animation: fadeIn 0.5s ease-in-out;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .SMD-form-container {
        width: 90%;
        padding: 20px;
    }

    h1,
    h2 {
        font-size: 28px;
    }

    .SMD-form-container button {
        font-size: 14px;
    }
}